Use this script for the conditions of disqualify, try again, and not covered.
-
Be sure the coverage tiers in the script are what you need. If you need Spouse only, you have to edit the script.
-
It's the same script for all 3 questions. You just un-comment the appropriate code at the bottom.
Event.Value = false;
var questions = new Array("BMCI_707_AIDS");
//--------------------------------------------------------------------------
---------------------------
var showDisqualifyQuestion = false;
var showTryAgainQuestion = false;
var showNotCoveredPeopleQuestion = false;
for (var index in questions) {
var question = questions[index];
var employeeDisqualified = false;
var spouseDisqualified = false;
var childrenCoveredNumber = 0;
var childrenDisqualifiedNumber = 0;
var isCurrentPersonDisqualified = false;
for (var ap in Event.Application.ApplicationPersons) {
var answer = Event.GetAnswer(ap.Person, question);
if (ap.Person.RelationshipID == 'Employee' && answer == 'True') {
employeeDisqualified = true;
}
if (ap.Person.RelationshipID == 'Spouse' && answer == 'True') {
spouseDisqualified = true;
}
if (ap.Person.RelationshipID == 'Child') {
childrenCoveredNumber = childrenCoveredNumber + 1;
if (answer == 'True') {
childrenDisqualifiedNumber = childrenDisqualifiedNumber + 1;
}
}
if (ap.Person.PersonID == Event.CurrentPerson.PersonID && answer ==
'True') {
isCurrentPersonDisqualified = true;
}
}
//Disqualify Question
if ((Event.Application.CoverageTypeID == 'EmployeeOnly' &&
employeeDisqualified)
|| (Event.Application.CoverageTypeID == 'Employee_Spouse' &&
employeeDisqualified)
|| (Event.Application.CoverageTypeID == 'Employee_Children' &&
employeeDisqualified)
|| (Event.Application.CoverageTypeID == 'Family' &&
employeeDisqualified)
|| (Event.Application.CoverageTypeID == 'SpouseOnly' &&
spouseDisqualified)
) {
showDisqualifyQuestion = true;
showTryAgainQuestion = false;
showNotCoveredPeopleQuestion = false;
}
//TryAgain
if (
(Event.Application.CoverageTypeID == 'Employee_Spouse' &&
spouseDisqualified)
|| (Event.Application.CoverageTypeID == 'Employee_Children' && (childrenCoveredNumber == childrenDisqualifiedNumber))
|| (Event.Application.CoverageTypeID == 'Family' && ( spouseDisqualified || ( childrenCoveredNumber == childrenDisqualifiedNumber
) ) )
) {
showTryAgainQuestion = !showDisqualifyQuestion;
showNotCoveredPeopleQuestion = false;
}
//NotCovered
if (isCurrentPersonDisqualified) {
showNotCoveredPeopleQuestion = !showDisqualifyQuestion && !showTryAgainQuestion;
}
}
//--------------------------------------------------------------------------
//Uncomment each for whatever question you are building.
//Use this script if it is Disqualify question type.
//Event.Value = showDisqualifyQuestion;
//Use this script if it is a try again question.
//Event.Value = showTryAgainQuestion;
//Use this script if it is not a covered people question.
//Event.Value = showNotCoveredPeopleQuestion;